projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fefaf21
)
[XEND] Fix missing serial and localtime args in device model for HVM
author
Alastair Tse
<atse@xensource.com>
Fri, 1 Dec 2006 10:47:57 +0000
(10:47 +0000)
committer
Alastair Tse
<atse@xensource.com>
Fri, 1 Dec 2006 10:47:57 +0000
(10:47 +0000)
Signed-off-by: Alastair Tse <atse@xensource.com>
tools/python/xen/xend/XendConfig.py
patch
|
blob
|
history
diff --git
a/tools/python/xen/xend/XendConfig.py
b/tools/python/xen/xend/XendConfig.py
index 3d79c657c91656e911e45ff77c3a5d0e15494198..3bb0ba4cd9ceef353e6b288011643f7dbdbdd3c6 100644
(file)
--- a/
tools/python/xen/xend/XendConfig.py
+++ b/
tools/python/xen/xend/XendConfig.py
@@
-186,19
+186,21
@@
LEGACY_IMAGE_HVM_CFG = [
('pae', int),
('apic', int),
('acpi', int),
- ('serial', str),
]
LEGACY_IMAGE_HVM_DEVICES_CFG = [
+ ('acpi', int),
('boot', str),
('fda', str),
('fdb', str),
- ('soundhw', str),
('isa', str),
- ('vcpus', int),
- ('acpi', int),
+ ('keymap', str),
+ ('localtime', str),
+ ('serial', str),
+ ('soundhw', str),
('usb', str),
- ('usbdevice', str),
+ ('usbdevice', str),
+ ('vcpus', int),
]